home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol06 / 01 / kermit / wnkterm.def < prev    next >
Text File  |  1990-12-31  |  1KB  |  57 lines

  1. ; Definitions file for WNTERM
  2. ;
  3. ; Copyright (c) 1980, 1990 by
  4. ; William S. Hall
  5. ; 3665 Benton Street, #66
  6. ; Santa Clara, CA 95051
  7.  
  8. NAME
  9.  
  10. DESCRIPTION 'Simple Windows Terminal Program'
  11.  
  12. STUB 'Winstub.exe'
  13.  
  14. EXETYPE        WINDOWS
  15.  
  16. HEAPSIZE    1024
  17. STACKSIZE    4096
  18.  
  19. CODE    MOVEABLE
  20. DATA    MOVEABLE MULTIPLE
  21.  
  22. SEGMENTS
  23.     _TERMRES PRELOAD MOVEABLE
  24.     _TERMINT PRELOAD MOVEABLE DISCARDABLE
  25.     _TERMMSC LOADONCALL MOVEABLE DISCARDABLE
  26.  
  27. EXPORTS
  28.     MainWndProc        @1
  29.     MainWndSubProc    @2
  30.     AboutBoxProc    @3
  31.     SetCommParams    @4
  32.     FindSmallFont    @5
  33. ; Kermit definitions items.
  34. ;
  35. ; Copyright (c) 1990 by
  36. ; William S. Hall
  37. ; 3665 Benton Street #66
  38. ; Santa Clara, CA 95051
  39. ;
  40. ; The contents of this file must be
  41. ; appended to the main module's definition file
  42. ;
  43. SEGMENTS
  44.     KRM_WNKERM LOADONCALL MOVEABLE DISCARDABLE
  45.     KRM_WNKINT LOADONCALL MOVEABLE DISCARDABLE
  46.     KRM_WNKMSC LOADONCALL MOVEABLE DISCARDABLE
  47.  
  48. EXPORTS
  49.     krmDoTimeout    @1000
  50.     krmXferDlgBox    @1001
  51.     krmCancelBoxProc    @1002
  52.     krmSendFileProc    @1003
  53.     krmProtocol        @1004
  54.     krmPackets        @1005
  55.     krmHideChildren    @1006
  56.  
  57.